home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / share / hobi / solarsys / Solar.exe / 0 / RCDATA / TFRMZOOM / TFRMZOOM.txt
Text File  |  1997-11-30  |  2KB  |  81 lines

  1. object frmZoom: TfrmZoom
  2.   Left = 330
  3.   Top = 455
  4.   ActiveControl = spinZoom
  5.   BorderIcons = [biSystemMenu, biHelp]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Zoom'
  8.   ClientHeight = 188
  9.   ClientWidth = 449
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnShow = FormShow
  16.   PixelsPerInch = 120
  17.   TextHeight = 16
  18.   object lblInfo: TLabel
  19.     Left = 24
  20.     Top = 16
  21.     Width = 289
  22.     Height = 57
  23.     AutoSize = False
  24.     Caption = 
  25.       'Enter the desired &zoom percentage in the text box to the right,' +
  26.       ' or use the trackbar below to select the desired value.'
  27.     FocusControl = spinZoom
  28.   end
  29.   object spinZoom: TSpinEdit
  30.     Left = 326
  31.     Top = 29
  32.     Width = 100
  33.     Height = 26
  34.     AutoSize = False
  35.     Increment = 10
  36.     MaxLength = 9
  37.     MaxValue = 999999999
  38.     MinValue = 1
  39.     TabOrder = 0
  40.     Value = 100
  41.     OnChange = spinZoomChange
  42.   end
  43.   object trackZoom: TTrackBar
  44.     Left = 8
  45.     Top = 88
  46.     Width = 433
  47.     Height = 41
  48.     Max = 1000
  49.     Min = 1
  50.     Orientation = trHorizontal
  51.     Frequency = 20
  52.     Position = 100
  53.     SelEnd = 0
  54.     SelStart = 0
  55.     TabOrder = 1
  56.     TickMarks = tmBottomRight
  57.     TickStyle = tsAuto
  58.     OnChange = trackZoomChange
  59.   end
  60.   object butOK: TButton
  61.     Left = 352
  62.     Top = 152
  63.     Width = 83
  64.     Height = 25
  65.     Caption = '&OK'
  66.     Default = True
  67.     TabOrder = 3
  68.     OnClick = butOKClick
  69.   end
  70.   object butCancel: TButton
  71.     Left = 256
  72.     Top = 152
  73.     Width = 83
  74.     Height = 25
  75.     Cancel = True
  76.     Caption = '&Cancel'
  77.     TabOrder = 2
  78.     OnClick = butCancelClick
  79.   end
  80. end
  81.